Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 37 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Tabs</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <section class="container">
      <ul class="tabs">
        <li class="tab-item">
          <a href="#item1" class="active">HTML</a>
        </li>
        <li class="tab-item">
          <a href="#item2">CSS</a>
        </li>
        <li class="tab-item">
          <a href="#item3">JAVASCRIPT</a>
        </li>
        <li class="tab-item">
          <a href="#item4">REACT</a>
        </li>
        <li class="tab-item">
          <a href="#item5">NODE</a>
        </li>
      </ul>

      <div class="wrapper_tab-content">
        <article id="item1" class="tab-content content-visible">
          <h1>HTML</h1>
          <p>
            The HyperText Markup Language or HTML is the standard markup
            language for documents designed to be displayed in a web browser. It
            can be assisted by technologies such as Cascading Style Sheets and
            scripting languages such as JavaScript.
          </p>
        </article>
        <article id="item2" class="tab-content">
          <h1>CSS</h1>
          <p>
            Cascading Style Sheets is a style sheet language used for describing
            the presentation of a document written in a markup language such as
            HTML. CSS is a cornerstone technology of the World Wide Web,
            alongside HTML and JavaScript.
          </p>
        </article>
        <article id="item3" class="tab-content">
          <h1>JAVASCRIPT</h1>
          <p>
            JavaScript, often abbreviated JS, is a programming language that is
            one of the core technologies of the World Wide Web, alongside HTML
            and CSS. Over 97% of websites use JavaScript on the client side for
            web page behavior, often incorporating third-party libraries.
          </p>
        </article>
        <article id="item4" class="tab-content">
          <h1>REACT</h1>
          <p>
            React is a free and open-source front-end JavaScript library for
            building user interfaces based on UI components. It is maintained by
            Meta and a community of individual developers and companies.
          </p>
        </article>
        <article id="item5" class="tab-content">
          <h1>NODE</h1>
          <p>
            Node.js is an open-source, cross-platform, back-end JavaScript
            runtime environment that runs on the V8 engine and executes
            JavaScript code outside a web browser.
          </p>
        </article>
      </div>
    </section>

    <script src="app.js"></script>
  </body>
</html>